| 12345678910111213141516171819 |
- import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
- /**
- * /:branch
- *
- * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
- * We explicitly await it here to avoid "sync dynamic APIs" runtime errors.
- */
- export default async function BranchPage({ params }) {
- const resolvedParams = await params;
- return (
- <PlaceholderPage
- title="Branch"
- description="Branch dashboard placeholder (will become the explorer entry point)."
- params={resolvedParams}
- />
- );
- }
|